/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Header */
.main-header {
  background-image: url('img/5k.png'); /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e2c77e;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
  min-height: 200px; /* Adjust height as needed */
  position: relative;
  z-index: 1;
}

/* Overlay for better readability */
.main-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.03); /* 40% black overlay */
  z-index: 0;
}

.header-top {
  min-height: 400px; /* Increase this value to make it taller */
  padding: 3rem 1rem; /* Increase top/bottom padding for more space */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}


/* Header Top content */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align content to the top */
  padding: 2rem 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}


.logo-img {
  width: 120px;
  height: auto;
}

.header-text {
  flex: 1;
  padding: 0 1rem;
  color: #e2c77e; /* Gold text color */
}

.header-text h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
  color: #e2c77e;
}

.header-text p {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-family: 'Georgia', serif;
  color: #fff;
}

.header-text h2 {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-family: 'Georgia', serif;
  color: #e2c77e;
}

/* Navbar */
.navbar {
  background-color: #000;
  padding: 0.8rem 0;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
}

.nav-links li a:hover {
  color: #e2c77e;
  border-bottom: 2px solid #e2c77e;
}
